38df2b3974346136a0d85dc477926d2947dd3424,source/com/intellij/psi/impl/compiled/ClsNameValuePairImpl.java,ClsNameValuePairImpl,appendMirrorText,#number#StringBuffer#,30
Before Change
}
public void appendMirrorText(final int indentLevel, final StringBuffer buffer) {
myNameIdentifier.appendMirrorText(0, buffer);
buffer.append(" = ");
((ClsElementImpl)myMemberValue).appendMirrorText(0, buffer);
}
After Change
}
public void appendMirrorText(final int indentLevel, final StringBuffer buffer) {
if (myNameIdentifier.getText() != null) {
myNameIdentifier.appendMirrorText(0, buffer);
buffer.append(" = ");
}
((ClsElementImpl)myMemberValue).appendMirrorText(0, buffer);